home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / chip-cd_2004_08.zip / 08 / Multimedia / Zoom Player Standard 4.00 / zp400std.exe / zplayer.zdf < prev   
Text File  |  2003-11-29  |  4KB  |  103 lines

  1. // The "ZPLAYER.ZDF" file is a Definition file which instructs Zoom Player
  2. // which settings should be saved to a "DF" file when the "fnSaveDF"
  3. // function is called, or when a DVD is set to Auto-Save a definition
  4. // file for a disc.
  5. //
  6. // Oh, and this isn't a sample file, this file is being looked at when
  7. // the "fnSaveDF" function is called.
  8. //
  9. // The following functions can be used:
  10. //
  11. // SaveBlanking
  12. //   - This function will save the blanking position.
  13. //
  14. // SaveCustomAR
  15. //   - This function will save the Custom Aspect Ratio values, useful
  16. //     in combination with the "SaveAspectRatio" function.
  17. //
  18. // SavePlacement
  19. //   - This function will save the position of the video in zoomed mode.
  20. //
  21. // SaveAspectRatio
  22. //   - This function will save the aspect ratio of the video.
  23. //
  24. // SaveOverlayColorControls
  25. //   - This function will save the overlay color control settings.
  26. //
  27. // SaveVMR9ColorControls
  28. //   - This function will save the VMR9 color control settings.
  29. //
  30. // SaveVolume
  31. //   - This function will save the audio volume.
  32. //
  33. // SaveBalance
  34. //   - This function will save the audio balance.
  35. //
  36. // SaveEQ
  37. //   - This function will save the Equalizer Values.
  38. //
  39. // SavePreAmp
  40. //   - This function will save the PreAmp volume boost.
  41. //
  42. // SaveRegistry(BaseKey,RegPath,KeyType,SubKey)
  43. //   - Save a registry value.  Can be useful for saving certain
  44. //     codec values (like say brightness for the DivX codec)
  45. //     right before the video loads.
  46. //
  47. //     "BaseKey" Can have 5 values:
  48. //               R = HKEY_CLASSES_ROOT
  49. //               U = HKEY_CURRENT_USER
  50. //               M = HKEY_LOCAL_MACHINE
  51. //               S = HKEY_USERS
  52. //               C = HKEY_CURRENT_CONFIG
  53. //
  54. //     "RegPath" is a path, such as "Software\VirtuaMedia\ZoomPlayer"
  55. //
  56. //     "KeyType" is the type of key, values can be:
  57. //               S = String
  58. //               D = DWord
  59. //
  60. //     "SubKey"  is the name of a key within the path
  61. //
  62. //
  63. //
  64. // SavePlacement, SaveAspectRatio and SaveOverlayColotControls
  65. // are pretty straight forward, here are some useful examples for
  66. // "SaveRegistry" (uncomment if you want them used):
  67. //
  68. // * Save the DivX 3.11 settings (tested under Windows XP, might be different
  69. //   location under other Operating Systems):
  70. //
  71. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Brightness)
  72. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Contrast)
  73. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Hue)
  74. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Saturation)
  75. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Contrast)
  76. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Post Process Mode)
  77. // SaveRegistry(U,Software\Microsoft\Scrunch\Video,D,Current Post Process Mode)
  78. //
  79. //
  80. // * Save the DivX 4.xx settings:
  81. //
  82. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Brightness)
  83. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Contrast)
  84. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Saturation)
  85. // SaveRegistry(U,Software\DivXNetworks\DivX4Windows,D,Postprocessing)
  86. //
  87. // As a security measure, registry information isn't set to load by
  88. // default, you must manually enable it through the "Options->Settings" tab.
  89. //
  90. // By default we only save the Video Placement,
  91. // Aspect Ratio and Overlay Color Controls.
  92. //
  93. SaveBlanking
  94. SaveCustomAR
  95. SavePlacement
  96. SaveAspectRatio
  97. SaveOverlayColorControls
  98. SaveVMR9ColorControls
  99. SaveVolume
  100. SavePreAmp
  101. SaveEQ
  102. SaveBalance
  103.